home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / AdobeExamples / NX_Clock / Clock_main.m < prev    next >
Text File  |  1992-12-19  |  263b  |  16 lines

  1. /*
  2.  *     Generated by the NeXT Interface Builder.
  3.  */
  4.  
  5. #import <stdlib.h>
  6. #import "ClockApp.h"
  7.  
  8. void main(int argc, char *argv[])
  9. {
  10.     NXApp = [ClockApp new];
  11.     [NXApp loadNibSection:"Clock.nib" owner:NXApp];
  12.     [NXApp run];
  13.     [NXApp free];
  14.     exit(0);
  15. }
  16.